From fcf18b50278de6353f13dc71bae9ead04515c19a Mon Sep 17 00:00:00 2001 From: Aryeh Gregor Date: Mon, 2 Jul 2007 16:19:25 +0000 Subject: [PATCH] (bug 10438) HTML TeX formulas should not wrap, according to standard TeX behavior. --- RELEASE-NOTES | 1 + skins/common/shared.css | 5 ++++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/RELEASE-NOTES b/RELEASE-NOTES index b520f8bfe4..e0a4ba4633 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -119,6 +119,7 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN * Add 'editsection-brackets' message to allow localization (or removal) of the brackets in the "[edit]" link for sections. * (bug 10437) Move texvc styling to shared.css. +* (bug 10438) HTML TeX formulas should not wrap. == Bugfixes since 1.10 == diff --git a/skins/common/shared.css b/skins/common/shared.css index b8f5775d8a..4a4a86f859 100644 --- a/skins/common/shared.css +++ b/skins/common/shared.css @@ -7,7 +7,10 @@ .texvc { direction: ltr; unicode-bidi: embed; } img.tex { vertical-align: middle; } -span.texhtml { font-family: serif; } +span.texhtml { + font-family: serif; + white-space: nowrap; +} /* Stop floats from intruding into edit area in previews */ #toolbar, #wpTextbox1 { clear: both; } -- 2.20.1